home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / TEXT_229.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  279 b   |  1 lines

  1. An object is a region of storage with associated semantics.  After the declaration 'int i;', we say that 'i is an object of type int'.  In C++/OOP, 'object' is usually used to mean 'an instance of a class'.  Thus a class defines the behavior of possibly many objects (instances).